All Questions
Tagged with postgresqltls
5 questions
6votes
1answer
6kviews
Is it safe to set rejectUnauthorized to false when using Heroku's Postgres database?
I am trying to put some fields in a Postgres database hosted on a Heroku app and it keeps returning this error: Error: self signed certificate code: 'DEPTH_ZERO_SELF_SIGNED_CERT' I have tried adding ...
2votes
3answers
2kviews
How strong should a database password be?
Seems like a trivial question, but I couldn't find other questions that address the following. So I'm simply asking, how strong would my (super user) database credentials ideally be? I simply figured ...
2votes
4answers
5kviews
Can TLS be a secure alternative to VPN?
I am developing an application that will be run by untrusted users in high performance computing centers. My users will not have root access, therefore VPN is not an option. I need some way to ...
2votes
0answers
2kviews
Connecting to postgres with SSL
I need help understanding some basics about the postgres database server and SSL. I am developing a Windows desktop application that will connect to a postgres database, in single user mode, with both ...
27votes
4answers
11kviews
Is Postgres password-based authentication secure?
According to Postgres's documentation, Postgres's password authentication method uses MD5 hashing to secure the password: The password-based authentication methods are md5 and password. These ...